home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / subdatab.zip / SUBDBREG.PAS < prev   
Pascal/Delphi Source File  |  1996-03-20  |  414b  |  23 lines

  1. unit Subdbreg;
  2.  
  3. interface
  4.  
  5. uses Classes, Dsgnintf,SUBdataB;
  6.  
  7.  
  8. procedure Register;
  9.  
  10. implementation
  11.  
  12.  
  13. procedure Register;
  14. begin
  15.   RegisterComponents('SUBDataBase', [TSUBDataBase]);
  16.   RegisterPropertyEditor(TypeInfo(string), TSUBDataBase, 'DataBaseName', TSUBDataBaseNameProperty);
  17.   RegisterPropertyEditor(TypeInfo(string), TSUBDataBase, 'DataBaseDir',  TSUBDataBaseDirProperty);
  18. end;
  19.  
  20.  
  21.  
  22. end.
  23.